* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');
.course-section {
    width: 90%;
    margin: auto;
    margin-top: 4em !important;
}
.headtop {
    text-align: center;
    margin-bottom: 2em;
}
.headtop label {
    color: #FC7900;
    font-weight: 700;
    font-size: .8em;
}
.headtop h2 {
    margin-top: .4em;
    color: #333333;
    font-size: 2em;
}
.box {
    background-color: #bdf7ff;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    width: 18em;
    padding: 1em;
    border: 3px solid #284265;
    border-radius: 8px;
    min-width: 15em;
}
.imge-box {
    width: 100%;
    border: 2px solid #284265;
    margin-bottom: 1em;
    height: 10em;

}
.imge-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.description {
    color: #333333;
}
.description h3 {
    font-size: 1.7em;
    margin-bottom: .6em;
    color: #284265;
}
.description p{
    color: #6e6e6e;
    font-size: 1.2em;
}
.btn-course {
    text-align: center;
    margin-top: 2em;
}
.btn-course button {
    width: 80%;
    font-size: 1.2em;
    padding: .4em 0;
    border: 2px solid #FC7900;
    background-color: transparent;
    border-radius: 8px;
    /* border: none; */
    color: #FC7900;
    font-weight: 700;
    transition: .3s ease-in-out;
    /* filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)); */
}
.btn-course button:hover {
    background-color: #FC7900;
    color: #ffffff;
    transition: .3s all;
}

.course-main {
    display: flex;
    overflow-x: auto;
    gap: 2em;
    scroll-snap-type: x mandatory;
}
.box {
    scroll-snap-align: center;
}
.order {
    order: -1;

}

.order button {
    background-color: #FC7900;
    color: #ffffff;
}
@media only screen and (min-width: 838px) {
    .course-main {
        display: flex;

    }
    .course-section {
        width: 90%;
        margin: auto;
    }
    .order {
        order: 4;
    }
}
@media only screen and (min-width: 1400px) {
    .course-main {
        justify-content: center;
        align-items: center;

    }
    .course-section {
        width: 95%;
        margin: auto;
    }
    .padding {
        margin-top: 10em;
    }
    .headtop {
        margin-bottom: 0;
    }
}
.buttom button {
    width: 10em !important;
    background-color: #FC7900;
    color: #ffffff;
    box-shadow: 2px 6px 8px -2px rgba(250, 177, 21, 0.47);
}